home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / cfpencod / cfpread.txt < prev   
Text File  |  1999-05-21  |  2KB  |  43 lines

  1. CFPCoder.dll version 1.0.0 by Colin Petch (c) 1998 colin@callnetuk.com    
  2.  
  3. WARNING
  4. This CFP Readme.txt file must be installed un-edited in the same directory 
  5. as CFPEnCoder.dll otherwise CFPEncoder will not work.
  6.  
  7. VB5 SOURCE CODE for CFPEncoder.dll is available to anyone, who requires it 
  8.  
  9. for a small charge of ú5.00 UK, Contact colin@computalynx.co.uk for details.
  10.  
  11. "CFP Readme.txt" dependacy removed from source code.
  12.  
  13. CFPCoder.dll developed in VB5,encodes any binary file into a UUE encoded file.
  14.  
  15. UUE encoding is acceived by extending binary groups of three bytes 
  16. into four bytes then converting the four bytes to printable characters.
  17.  
  18. The output file is given an extension of "UUE", if a target file is not specified.
  19.  
  20. Usage:
  21.     Project References    CFP UU Encoder
  22.  
  23.     General Declarations    Private or Public XX as ICoder
  24.  
  25.     Procedure usage        Set XX = New CEnCoder
  26.             
  27.                 XX.Source = "Any Path/Filename.any"
  28.             
  29.     Optional Setting    XX.Target = "Any Path/Filename.any"
  30.             
  31.                 XX.Convert
  32.  
  33. If a Target is not specified then the output file is writen to the source file directory,
  34. with the same filename and an extention of "uue"
  35. If a Target is specified, make sure the Taget file does not already exist as it will be overwriten. 
  36. Most if not any UUE Decoder programmes such as those built into Agent will decode the files produced with CFPCoder.dll please let me know if you find one that has problems decoding.
  37.  
  38. You may use my CFPEncoder.dll version 1.0.0 in any way you like, and distribute it within your own programmes without charge, along with this "CFP readme.txt".
  39.  
  40. I will not be held liable for the misuse or loss of files, through using CFPEncoder.dll
  41. As it is a dll you are responsable for its usage.
  42.  
  43.